home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue62 / Construc / UC62.BPG < prev    next >
Encoding:
Borland Project Group  |  2000-09-06  |  844 b   |  27 lines

  1. #------------------------------------------------------------------------------
  2. VERSION = BWS.01
  3. #------------------------------------------------------------------------------
  4. !ifndef ROOT
  5. ROOT = $(MAKEDIR)\..
  6. !endif
  7. #------------------------------------------------------------------------------
  8. MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
  9. DCC = $(ROOT)\bin\dcc32.exe $**
  10. BRCC = $(ROOT)\bin\brcc32.exe $**
  11. #------------------------------------------------------------------------------
  12. PROJECTS = DataXML.exe biolife.exe UC62.exe
  13. #------------------------------------------------------------------------------
  14. default: $(PROJECTS)
  15. #------------------------------------------------------------------------------
  16.  
  17. DataXML.exe: DataXML.dpr
  18.   $(DCC)
  19.  
  20. biolife.exe: biolife.DPR
  21.   $(DCC)
  22.  
  23. UC62.exe: UC62.dpr
  24.   $(DCC)
  25.  
  26.  
  27.